You can see from the output in Listing 2 that you open the debugger, set a breakpoint in the calc_diff() function by specifying it by name, and then run the program within the debugger, supplying the same arguments as you would on the command line. 通过清单2中的输出可以看出,我们打开了调试器,通过指定名称在calcdiff()函数中设置了一个断点,然后在调试器中运行程序,提供与命令行相同的参数。
When the debugger stops at that breakpoint, type this command 当这个调试器停在一个观察点时,键入这个命令
The number of lines skipped after each breakpoint can be modified using the SKIP option in the BREAK command. 每个断点后跳过的行的数量可以使用BREAK命令的SKIP选项进行修改。
It sets INT3 breakpoint on every command within the specified region. 它在指定的区域中的每一个命令处设置一个INT3断点。